home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 42 / Amiga Format AFCD42 (Issue 126, Aug 1999).iso / -serious- / comms / other / slrn / slrn_src / src / vms.h < prev    next >
C/C++ Source or Header  |  1999-05-14  |  588b  |  33 lines

  1. #ifdef __DECC
  2. # include <unixio.h>
  3. # include <unixlib.h>
  4. #endif
  5.  
  6. #include <signal.h>
  7. #include <dvidef.h>
  8. #include <descrip.h>
  9. #include <ssdef.h>
  10.  
  11. #include <stat.h>
  12. #include <types.h>
  13. #include <socket.h>
  14.  
  15. #include <lib$routines.h>
  16.  
  17. #ifdef __GNUC__
  18. # include <sys$routines.h>
  19. #else
  20. # include <starlet.h>
  21. #endif
  22.  
  23. extern char *slrn_vms_fix_fullname (char *);
  24. extern char *slrn_vms_get_uaf_fullname (void);
  25. extern char *slrn_vms_getlogin (void);
  26. extern int vms_send_mail(char *, char *, char *);
  27.  
  28. #if __VMS_VER < 70000000
  29. extern int pclose(FILE *);
  30. extern FILE *popen(char *, char *);
  31. #endif
  32.  
  33.